.msf_hide {
    display: none;
}

.msf_show {
    display: block;
}

.msf_bullet_o {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.msf_bullet_o>div {
    height: 15px;
    width: 15px;
    margin: 20px 10px;
    border-radius: 100px;
    z-index: 2;
}

.msf_bullet {
    background-color: lightgrey;
}

.msf_bullet_active {
    background-color: darkgrey !important;
}


/* Just for decoration */

body {
    margin: 10px 12px;
    justify-content: center;
}

.msf_line {
    opacity: 0.3;
    background: lightgrey;
    height: 3px;
    width: 70px;
    display: block;
    left: 50%;
    margin-top: -29px;
    margin-left: -35px;
    position: absolute;
    z-index: 1;
}

fieldset {
    display: contents;
    flex-flow: row wrap;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 30px;
    border-radius: 0px;
    border: none;
    padding: 10px 20px !important;
}

.form-button {
    display: block;
    width: 100%;
    height: 20px;
    margin: 15px 0px;
}

.form-button[type="text"],
.form-button[type="email"] {
    outline: none;
    border: none;
    border: solid 1px lightgray;
    border-radius: 8px;
    background-color: lightgrey;
    padding: 5px 0px !important;
    text-align: center;
    transition: all 250ms;
    height: auto;
}

.form-button[type="text"]:focus,
.form-button[type="email"]:focus {
    opacity: 0.5;
}

.form-button[type="button"],
.form-button[type="submit"] {
    margin-top: 20px !important;
    cursor: pointer;
    outline: none;
    border: none;
    padding: 15px !important;
    line-height: 0px;
    background-color: #fff;
    transition: all 150ms;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 5px;
}

.form-button[type="button"]:hover,
.form-button[type="submit"]:hover {
    background-color: darkgrey;
    color: white;
}

h2 {
    text-align: center;
    font-size: 22px;
    font-family: opensans;
    font-weight: 400;
    display: block;
    margin-bottom: 25px !important;
}

body {
    color: #939292;
    font-family: 'proxima_nova_regular', sans-serif;
}

* {
    box-sizing: border-box;
}

.input-container {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
    box-shadow: none;
    outline: none;
}

.icon {
    padding: 13px;
    min-width: 50px;
    text-align: center;
    background-color: #b7b7b7;
    color: white;
}

.input-field {
    width: 100%;
    padding: 11px 7px 4px;
    outline: none;
    border: solid #b7b7b7 1px;
}

.input-field:focus {
    box-shadow: 0px 0px 1px;
}

::placeholder {
    /* Most modern browsers support this now. */
    color: #b7b7b7;
}

.input-field:focus::placeholder {
    font-size: 8px;
    padding-bottom: 3px;
}

.box form fieldset div label {
    position: absolute;
    color: #999;
    transition: .5s;
    pointer-events: none;
    left: 90px;
    margin-top: 11px;
}

.input-field:focus~label,
.input-field:valid~label {
    margin-top: 5px;
    font-size: 10px;
    font-weight: bold;
}

.rdo {
    height: 20px;
}